html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
    place-items: center;
}

#mainWrap{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    grid-template-rows: repeat(10, 1fr);
    place-content: center;

}

#logo{
    width: 600px;
}

#notifyTitle{
    margin: 0;
    grid-row: 1;
    grid-column: 1;
    place-self: center;
}

#notifyBody{
    margin: 0;
    grid-row: 1;
    grid-column: 2;
    place-self: center;
    font-size: 15px;
}

#notifyButton {
    background-color: #e65a5a;
    color: white;
    border: 2px solid #e65a5a;
}

#notifyButton:hover {
    background-color: white;
    color: black;
    border: 2px solid #e65a5a;
}

#notifyWrapper{
    grid-column: 2;
    grid-row: 4;
    place-self: center;

    display: grid;
    grid-template-columns: 60px 1fr 60px;
    grid-template-rows: 1fr;

    overflow: hidden;
    white-space: nowrap;
    width: 0;
    height: 25%;

    background-color: lightcoral;
    transition-duration: 1s;
}

.notifyText{
    font-family: Roboto;
}

.center{
    grid-row: 5;
    grid-column: 2;
    align-self: center;
    justify-self: center;
}

.botCenter{
    grid-row: 6;
    grid-column: 2;
    align-self: start;
    justify-self: center;
}